home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / minix / up1510b.tgz / up1510b / etc / rc < prev    next >
Text File  |  1990-07-15  |  740b  |  24 lines

  1. # This file performs various system initializations.
  2.  
  3. # Initialize files.
  4. >/etc/mtab                # create file to log mounts
  5. >/etc/utmp                # /etc/utmp keeps track of logins
  6.  
  7. # Mount the floppy disk.
  8. /bin/getlf "Please insert /usr diskette in drive 0.  Then hit RETURN."
  9. /etc/mount /dev/dd0 /usr        # mount the floppy disk
  10.  
  11. # More initialization (cannot be done until /usr is mounted).
  12. >/usr/adm/wtmp                # accounting information
  13. /usr/bin/printroot >>/etc/mtab        # /etc/mtab keeps track of mounts
  14.  
  15. # Try to read the hardware real-time clock, if there is one, to set the date
  16. /usr/bin/date -q
  17.  
  18. # Initialize the first RS232 line to 1200 baud.
  19. /usr/bin/stty 1200 </dev/tty1
  20.  
  21. #Display the message of the day and start update.
  22. cat /etc/message
  23. /etc/update  &
  24.